1. Principles and Practices, Project Management

In the first week we worked on defining the final project and getting familiar with the documentation process.

Principles and Practices

Weareable Wireless Robotic Arm Controller

The goal of this project is to develop a wearable control interface capable of teleoperating a robotic arm in real-time. By integrating motion tracking and flex sensing, the system allows for an intuitive, human-like control experience, bridging the gap between user intent and mechanical execution. Beyond simple movement, this technology aims to decentralize the operator from the machine, allowing for complex tasks to be performed at a safe distance or in specialized environments.


Prototipe sketch

Technical Objectives

Challenges and Technical Hurdles

The greatest technical challenge is achieving a near-zero lag between the user’s hand and the robot’s response. The data from the MPU6050 can be noisy so the implementation of digital filters (like a Complementary filter) is essential to smooth out the motion without introducing additional delay. Since the controller is a "Smart Glove," it must be comfortable for long-term use so the XIAO ESP32-C3 and the battery must be positioned to avoid straining the user's wrist. Another challenge lies in creating a mounting system that ensures the flex sensors stay aligned with the knuckles during repeated bending, providing consistent resistance readings.

Project Management

Setup Guide: Cloning my GitLab Repository

To begin working on my website, I followed this initial workflow to link my local environment with the Fab Academy remote repository:

  1. Git Installation: First, I downloaded and installed Git on my computer to enable version control directly from the terminal. Git - Install
  2. Workspace Preparation: I created a dedicated folder on my device where all the website files and assets will be organized and stored.
  3. Linking with GitLab: On the Fab Academy GitLab page, I copied the project link under the "Clone with HTTPS" option. This link acts as the "cloud" address for my site.
    Clone with HTTPS
  4. Cloning via VS Code: I opened my local folder in Visual Studio Code. Using the integrated terminal, I executed the cloning command: git clone https://gitlab.fabcloud.org...
  5. Navigating to the Directory: Once Git finished downloading the repository copy, I used the cd (change directory) command to enter my project folder: cd .\your-name\

It is now possible to modify the repository locally from your device. To do that we will use the following git commands in the Visual Studio Code terminal.

Every time a change is made to the project, the following sequence must be executed in the terminal to update the live site:

  1. Stage: git add .
    Prepares all modified files to be included in the next commit.
  2. Commit: git commit -m "Your message here"
    Saves the changes locally with a descriptive note about what was done.
  3. Push: git push
    Uploads the local commits to the GitLab cloud, making the changes public.

Core Project Files

Building a website involves using HTML, a markup language based on tags (<>) that defines the site's structure, and CSS, which is used to apply visual styles. To manage these files effectively, Git is utilized as a version control system.

We are now ready to start filling out the repository.